home *** CD-ROM | disk | FTP | other *** search
/ Freelog Special Edition 18 / FreelogHS18.iso / Editeur texte / Keynote / kntsetup.exe / {app} / keyboard.css < prev    next >
Cascading Style Sheet File  |  2002-03-21  |  893b  |  53 lines

  1. /*  keyboard.css: used for customizing the look of    */
  2. /*  KeyNote keyboard shortcut listing (keyboard.html) */
  3.  
  4. BODY {
  5.     margin: 1%;
  6.     text-align: left;
  7.     background: #D0D0D0;
  8.     color: black;
  9.     font-family: Arial, Helvetica, sans-serif;
  10. }
  11.  
  12. TH {
  13.     text-align: left;
  14.     font-weight: bold;
  15.     background: #E2E2E2;
  16.     color: navy;
  17. }
  18.  
  19. TD {
  20.     text-align: left;
  21.     background: #FFFFFF;
  22.     color: black;
  23. }
  24.  
  25. /* column 1: displays command as appears on menu */
  26. .keyname {
  27.     color : black;
  28.     font-size: smaller;
  29. }
  30.  
  31. /* column 2: displays internal command name */
  32. .keycmd {
  33.     color : black;
  34.     font-size: smaller;
  35. }
  36.  
  37.  
  38. /* column 3: displays keyboard shortcut assigned to command */
  39. .key {
  40.     color : navy;
  41.     background: #FFFFD2;
  42.     font-weight: bold;
  43.     font-size: smaller;
  44.  
  45. }
  46.  
  47. /* column 4: displays command hint (description) */
  48. .keyhint {
  49.     color : black;
  50.     font-size: smaller;
  51. }
  52.  
  53.